<?
class FeedBackManager
{

   public function renderFeedbackForm()
   {
      $form = <<< END
      <form method=POST action="">
         Imi i nazwisko: <br/>
         <input type='text' name='username'><br/>
         E-mail: <br/>
         <input type='text' name='email'><br/>
         Temat: <br/>
         <input type='text' name='subject'><br/>
         Komentarz: <br/>
         <textarea name='message'></textarea><br/>
         <input type='submit' value='Wylij'>
      </form>
END;
      echo $form;
   }
}
?>